Uses of Class
algalcommand.io.xml.Element

Packages that use Element
algalcommand.io.xml   
 

Uses of Element in algalcommand.io.xml
 

Subclasses of Element in algalcommand.io.xml
 class RootElement
          This class is used to represent the unnamed root of an XML tree.
 

Methods in algalcommand.io.xml that return Element
 Element Element.clone()
           
protected static Element RootElement.parseContent(Element root, java.lang.String content)
          Parses the content between the openning and closing tags of an element.
 

Methods in algalcommand.io.xml that return types with arguments of type Element
 java.util.List<Element> Element.getChildElementsByName(java.lang.String tagname, boolean caseSensitive)
          Scans through the children of this element and returns those of the type specified.
 

Methods in algalcommand.io.xml with parameters of type Element
 void Element.addChild(Element child)
          Adds an element child inside this tag.

Ex:
     <font size="2">Greetings <b>friend!</b></font>
In the above code, the children of the font element are (in order) "Greetings " and b.

protected static Element RootElement.parseContent(Element root, java.lang.String content)
          Parses the content between the openning and closing tags of an element.